home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cracking 2
/
Cracking II..iso
/
Kompresni & kodovaci programy
/
ucl-0.91
/
B
/
win32
/
bc55.bat
next >
Wrap
DOS Batch File
|
2000-04-05
|
678b
|
30 lines
rem /* Windows 32 bit (LIB) - Borland C++ 5.5
rem * a very simple make driver
rem * Copyright (C) 1996-2000 Markus F.X.J. Oberhumer
rem */
@if "%UCL_ECHO%"=="n" echo off
set CC=bcc32
set CFLAGS=-Iinclude -O2 -w -w-par
set MYLIB=ucl.lib
echo Compiling, please be patient...
%CC% %CFLAGS% -Isrc -c src\*.c
@if errorlevel 1 goto error
if exist %MYLIB% del %MYLIB%
tlib %MYLIB% @b\win32\bc55.rsp
@if errorlevel 1 goto error
%CC% %CFLAGS% -Iexamples examples\simple.c %MYLIB%
@if errorlevel 1 goto error
%CC% %CFLAGS% -Iexamples examples\uclpack.c %MYLIB%
@if errorlevel 1 goto error
echo Done.
goto end
:error
echo error!
:end
@call b\unset.bat